chromium/133.0.6943.126 package update#43005
Conversation
octo-sts
bot
commented
Feb 19, 2025
Signed-off-by: wolfi-bot <121097084+wolfi-bot@users.noreply.github.com>
|
Please use 👍 or 👎 on this comment to indicate if you agree or disagree with the recommendation. To provide more detailed feedback please comment on the recommendation prefixed with /ai-verify: e.g. /ai-verify partially helpful but I also added bash to the build environment Gen AI suggestions to solve the build error: • Detected Error: "FAIL Expected commit da53563ceb66412e2637507c8724bd0cab05e453 for 133.0.6943.126, found cffa127ce7b6be72885391527c15b452056a2e81" • Error Category: Version/Commit Mismatch • Failure Point: Git checkout step validation of expected commit hash • Root Cause Analysis: The expected commit hash in the melange YAML doesn't match the actual commit hash for the specified tag in the Chromium repository. This typically happens when the package version is updated but the expected-commit hash wasn't updated to match. • Suggested Fix:
- uses: git-checkout
with:
repository: https://chromium.googlesource.com/chromium/src.git
tag: ${{package.version}}
depth: 1
expected-commit: cffa127ce7b6be72885391527c15b452056a2e81 # Update this line
destination: /home/src• Explanation: The build system validates that the checked out commit matches what's expected to ensure reproducible builds and prevent supply chain attacks. The current mismatch indicates the expected-commit needs to be updated to match the actual commit hash for Chromium version 133.0.6943.126. • Additional Notes:
• References:
|
Signed-off-by: RJ Trujillo <rj.sampson@chainguard.dev>